home *** CD-ROM | disk | FTP | other *** search
/ Skunkware 5 / Skunkware 5.iso / src / Tools / mpeg_stat-2.2 / util.c < prev    next >
C/C++ Source or Header  |  1995-05-10  |  11KB  |  475 lines

  1. /* MPEGSTAT - analyzing tool for MPEG-I video streams
  2.  * 
  3.  *
  4.  *  Copyright (c) 1995 The Regents of the University of California.
  5.  * All rights reserved.
  6.  *
  7.  * Technical University of Berlin, Germany, Dept. of Computer Science
  8.  * Tom Pfeifer - Multimedia systems project - pfeifer@fokus.gmd.de
  9.  *
  10.  * Jens Brettin, Harald Masche, Alexander Schulze, Dirk Schubert
  11.  *
  12.  * This program uses parts of the source code of the Berkeley MPEG player
  13.  *
  14.  * ---------------------------
  15.  *
  16.  * Copyright (c) 1993 Technical University of Berlin, Germany
  17.  *
  18.  * for the parts of the Berkeley player used:
  19.  *
  20.  * Copyright (c) 1992 The Regents of the University of California.
  21.  * All rights reserved.
  22.  *
  23.  * ---------------------------
  24.  *
  25.  * Permission to use, copy, modify, and distribute this software and its
  26.  * documentation for any purpose, without fee, and without written agreement is
  27.  * hereby granted, provided that the above copyright notices and the following
  28.  * two paragraphs appear in all copies of this software.
  29.  * 
  30.  * IN NO EVENT SHALL THE UNIVERSITY OF CALIFORNIA 
  31.  * or the Technical University of Berlin BE LIABLE TO ANY PARTY FOR
  32.  * DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT
  33.  * OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF THE UNIVERSITY OF
  34.  * CALIFORNIA or the Technical University of Berlin HAS BEEN ADVISED OF THE 
  35.  * POSSIBILITY OF SUCH DAMAGE.
  36.  * 
  37.  * THE UNIVERSITY OF CALIFORNIA and the Technical University of Berlin 
  38.  * SPECIFICALLY DISCLAIM ANY WARRANTIES, INCLUDING, BUT NOT LIMITED TO, 
  39.  * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
  40.  * PURPOSE.  THE SOFTWARE PROVIDED HEREUNDER IS ON AN "AS IS" BASIS, AND THE 
  41.  * UNIVERSITY OF CALIFORNIA and the Technical University of Berlin HAVE NO 
  42.  * OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, 
  43.  * OR MODIFICATIONS.
  44.  */
  45.  
  46. #include <stdlib.h>
  47. #include "video.h"
  48. #include "proto.h"
  49. #include "util.h"
  50. #include "dither.h"
  51.  
  52. /* Declarations of global variables used. */
  53.  
  54. unsigned int curBits;
  55. int bitOffset;
  56. int bufLength;
  57. unsigned int *bitBuffer;
  58. extern BlockVals blks;
  59.  
  60. /* Bit masks used by bit i/o operations. */
  61.  
  62. unsigned int nBitMask[] = { 0x00000000, 0x80000000, 0xc0000000, 0xe0000000, 
  63.                 0xf0000000, 0xf8000000, 0xfc000000, 0xfe000000, 
  64.                 0xff000000, 0xff800000, 0xffc00000, 0xffe00000, 
  65.                 0xfff00000, 0xfff80000, 0xfffc0000, 0xfffe0000, 
  66.                 0xffff0000, 0xffff8000, 0xffffc000, 0xffffe000, 
  67.                 0xfffff000, 0xfffff800, 0xfffffc00, 0xfffffe00, 
  68.                 0xffffff00, 0xffffff80, 0xffffffc0, 0xffffffe0, 
  69.                 0xfffffff0, 0xfffffff8, 0xfffffffc, 0xfffffffe};
  70.  
  71. unsigned int bitMask[] = {  0xffffffff, 0x7fffffff, 0x3fffffff, 0x1fffffff, 
  72.                 0x0fffffff, 0x07ffffff, 0x03ffffff, 0x01ffffff,
  73.                 0x00ffffff, 0x007fffff, 0x003fffff, 0x001fffff,
  74.                 0x000fffff, 0x0007ffff, 0x0003ffff, 0x0001ffff,
  75.                 0x0000ffff, 0x00007fff, 0x00003fff, 0x00001fff,
  76.                 0x00000fff, 0x000007ff, 0x000003ff, 0x000001ff,
  77.                 0x000000ff, 0x0000007f, 0x0000003f, 0x0000001f,
  78.                 0x0000000f, 0x00000007, 0x00000003, 0x00000001};
  79.  
  80. unsigned int rBitMask[] = { 0xffffffff, 0xfffffffe, 0xfffffffc, 0xfffffff8, 
  81.                 0xfffffff0, 0xffffffe0, 0xffffffc0, 0xffffff80, 
  82.                 0xffffff00, 0xfffffe00, 0xfffffc00, 0xfffff800, 
  83.                 0xfffff000, 0xffffe000, 0xffffc000, 0xffff8000, 
  84.                 0xffff0000, 0xfffe0000, 0xfffc0000, 0xfff80000, 
  85.                 0xfff00000, 0xffe00000, 0xffc00000, 0xff800000, 
  86.                 0xff000000, 0xfe000000, 0xfc000000, 0xf8000000, 
  87.                 0xf0000000, 0xe0000000, 0xc0000000, 0x80000000};
  88.  
  89. unsigned int bitTest[] = {  0x80000000, 0x40000000, 0x20000000, 0x10000000, 
  90.                 0x08000000, 0x04000000, 0x02000000, 0x01000000,
  91.                 0x00800000, 0x00400000, 0x00200000, 0x00100000,
  92.                 0x00080000, 0x00040000, 0x00020000, 0x00010000,
  93.                 0x00008000, 0x00004000, 0x00002000, 0x00001000,
  94.                 0x00000800, 0x00000400, 0x00000200, 0x00000100,
  95.                 0x00000080, 0x00000040, 0x00000020, 0x00000010,
  96.                 0x00000008, 0x00000004, 0x00000002, 0x00000001};
  97.  
  98.  
  99. /*
  100.  *--------------------------------------------------------------
  101.  *
  102.  * correct_underflow --
  103.  *
  104.  *    Called when buffer does not have sufficient data to 
  105.  *      satisfy request for bits.
  106.  *      Calls get_more_data, an application specific routine
  107.  *      required to fill the buffer with more data.
  108.  *
  109.  * Results:
  110.  *      None really.
  111.  *  
  112.  * Side effects:
  113.  *    buf_length and buffer fields in curVidStream structure
  114.  *      may be changed.
  115.  *
  116.  *--------------------------------------------------------------
  117.  */
  118.  
  119. void 
  120. correct_underflow() {
  121.  
  122.   int status;
  123.  
  124.   status = get_more_data(&curVidStream->buf_start,
  125.              &curVidStream->max_buf_length,
  126.              &bufLength, &bitBuffer);
  127.  
  128.   if (status  < 0) {
  129.     fprintf (stderr, "\n");
  130.     perror("Unexpected read error.");
  131.     exit(1);
  132.   }
  133.   else if ((status == 0) && (bufLength < 1)) {
  134.     fprintf(stderr, "\nImproper or missing sequence end code.\n");
  135.     if (bitCount>0) {
  136.       if (blks.frame>0) {
  137.     PrintAllStats();
  138.     PrintTimeInfo();
  139.       }
  140.     } else {
  141.       fprintf(stderr,"File appears to be empty.\n");
  142.       fflush(stderr);
  143.     }
  144.     DestroyVidStream(curVidStream);
  145.     exit(0);
  146.   }
  147. #ifdef UTIL2
  148.   curBits = *bitBuffer << bitOffset;
  149. #else
  150.   curBits = *bitBuffer;
  151. #endif
  152.  
  153. }
  154.  
  155.  
  156. /*
  157.  *--------------------------------------------------------------
  158.  *
  159.  * next_bits --
  160.  *
  161.  *    Compares next num bits to low order position in mask.
  162.  *      Buffer pointer is NOT advanced.
  163.  *
  164.  * Results:
  165.  *    TRUE, FALSE, or error code.
  166.  *
  167.  * Side effects:
  168.  *    None.
  169.  *
  170.  *--------------------------------------------------------------
  171.  */
  172.  
  173. int next_bits(num, mask)
  174. int num;
  175. unsigned int mask;
  176. {
  177.   unsigned int stream;
  178.   int ret_value;
  179.  
  180.   /* If no current stream, return error. */
  181.  
  182.   if (curVidStream == NULL)
  183.     return NO_VID_STREAM;
  184.  
  185.   /* Get next num bits, no buffer pointer advance. */
  186.  
  187.   show_bitsn(num, stream);
  188.  
  189.   /* Compare bit stream and mask. Set return value toTRUE if equal, FALSE if
  190.      differs. 
  191.   */
  192.  
  193.   if (mask == stream) {
  194.     ret_value = TRUE;
  195.   } else ret_value = FALSE;
  196.  
  197.   /* Return return value. */
  198.  
  199.   return ret_value;
  200. }
  201.  
  202.  
  203. /*
  204.  *--------------------------------------------------------------
  205.  *
  206.  * get_ext_data --
  207.  *
  208.  *    Assumes that bit stream is at begining of extension
  209.  *      data. Parses off extension data into dynamically 
  210.  *      allocated space until start code is hit. 
  211.  *
  212.  * Results:
  213.  *    Pointer to dynamically allocated memory containing
  214.  *      extension data.
  215.  *
  216.  * Side effects:
  217.  *    Bit stream irreversibly parsed.
  218.  *
  219.  *--------------------------------------------------------------
  220.  */
  221.  
  222. char *get_ext_data (size)
  223. int *size;
  224. {
  225.   int sz, marker;
  226.   char *dataPtr;
  227.   unsigned int data;
  228.  
  229.   /* Set initial ext data buffer size. */
  230.  
  231.   sz = EXT_BUF_SIZE;
  232.  
  233.   /* Allocate ext data buffer. */
  234.  
  235.   dataPtr = (char *) malloc(sz);
  236.  
  237.   /* Initialize marker to keep place in ext data buffer. */
  238.  
  239.   marker = 0;
  240.  
  241.   /* While next data is not start code... */
  242.   while (!next_bits(24, 0x000001)) {
  243.  
  244.     /* Get next byte of ext data. */
  245.  
  246.     get_bits8(data);
  247.  
  248.     /* Put ext data into ext data buffer. Advance marker. */
  249.  
  250.     dataPtr[marker] = (char) data;
  251.     marker++;
  252.  
  253.     /* If end of ext data buffer reached, resize data buffer. */
  254.  
  255.     if (marker == sz) {
  256.       sz += EXT_BUF_SIZE;
  257.       dataPtr = (char *) realloc(dataPtr, sz);
  258.     }
  259.   }
  260.  
  261.   /* Realloc data buffer to free any extra space. */
  262.  
  263.   dataPtr = (char *) realloc(dataPtr, marker);
  264.  
  265.   *size = marker;
  266.  
  267.   /* Return pointer to ext data buffer. */
  268.  
  269.   return dataPtr;
  270. }
  271.  
  272.  
  273. /*
  274.  *--------------------------------------------------------------
  275.  *
  276.  * next_start_code --
  277.  *
  278.  *    Parses off bitstream until start code reached. When done
  279.  *      next 4 bytes of bitstream will be start code. Bit offset
  280.  *      reset to 0.
  281.  *
  282.  * Results:
  283.  *    Status code.
  284.  *
  285.  * Side effects:
  286.  *    Bit stream irreversibly parsed.
  287.  *
  288.  *--------------------------------------------------------------
  289.  */
  290. int next_start_code()
  291. {
  292.   int state;
  293.   int byteoff;
  294.   unsigned int data;
  295.  
  296.   /* If no current stream, return error. */
  297.  
  298.   if (curVidStream == NULL)
  299.     return NO_VID_STREAM;
  300.  
  301.   /* If insufficient buffer length, correct underflow. */
  302.  
  303.   if (bufLength < 4) {
  304.     correct_underflow();
  305.   }
  306.  
  307.   /* If bit offset not zero, reset and advance buffer pointer. */
  308.  
  309.   byteoff = bitOffset % 8;
  310.  
  311.   if (byteoff != 0) {
  312.     flush_bits((8-byteoff));
  313.   }
  314.  
  315.   /* Set state = 0. */
  316.  
  317.   state = 0;
  318.  
  319.   /* While buffer has data ... */
  320.  
  321.   while(bufLength > 0) {
  322.     
  323.     /* If insufficient data exists, correct underflow. */
  324.     
  325.     if (bufLength < 4) {
  326.       correct_underflow();
  327.     }
  328.     
  329.     /* If next byte is zero... */
  330.     get_bits8(data);
  331.     
  332.     if (data == 0) {
  333.       if (state < 2) state++;
  334.     }
  335.     
  336.     /* If next byte is one... */
  337.     else if (data == 1) {
  338.       
  339.       /* If state == 2, advance state (i.e. start code found). */
  340.       if (state == 2) state++;
  341.       
  342.       /* Otherwise, reset state to zero. */
  343.       else state = 0;
  344.     }
  345.     
  346.     /* Otherwise byte is neither 1 or 0, reset state to 0. */
  347.     else {
  348.       state = 0;
  349.     }
  350.     
  351.     /* If state == 3 (i.e. start code found)... */
  352.     if (state == 3) {
  353.       
  354.       /* Set buffer pointer back and reset length & bit offsets so
  355.      next bytes will be beginning of start code. 
  356.      */
  357.       
  358.       bitOffset = bitOffset - 24;
  359.       
  360.       bitCount -= 24;
  361.       
  362.       if (bitOffset < 0) {
  363.     bitOffset = 32 + bitOffset;
  364.     bufLength++;
  365.     bitBuffer--;
  366. #ifdef UTIL2
  367.     curBits = *bitBuffer << bitOffset;
  368. #else
  369.     curBits = *bitBuffer;
  370. #endif
  371.       }
  372.       else {
  373. #ifdef UTIL2
  374.     curBits = *bitBuffer << bitOffset;
  375. #else
  376.     curBits = *bitBuffer;
  377. #endif
  378.       }
  379.  
  380.       /* Return success. */
  381. /* if ((bitOffset-8*byteoff)>100) printf("nsc skipped %d\n",(bitOffset-8*byteoff)); */
  382.       return OK;
  383.     }
  384.   }
  385.  
  386.   /* Return underflow error. */
  387.  
  388.   return STREAM_UNDERFLOW;
  389. }
  390.  
  391.  
  392. /*
  393.  *--------------------------------------------------------------
  394.  *
  395.  * get_extra_bit_info --
  396.  *
  397.  *    Parses off extra bit info stream into dynamically 
  398.  *      allocated memory. Extra bit info is indicated by
  399.  *      a flag bit set to 1, followed by 8 bits of data.
  400.  *      This continues until the flag bit is zero. Assumes
  401.  *      that bit stream set to first flag bit in extra
  402.  *      bit info stream.
  403.  *
  404.  * Results:
  405.  *    Pointer to dynamically allocated memory with extra
  406.  *      bit info in it. Flag bits are NOT included.
  407.  *
  408.  * Side effects:
  409.  *    Bit stream irreversibly parsed.
  410.  *
  411.  *--------------------------------------------------------------
  412.  */
  413.  
  414. char *get_extra_bit_info ()
  415. {
  416.   int size, marker;
  417.   char *dataPtr;
  418.   unsigned int data;
  419.  
  420.   /* Get first flag bit. */
  421.   get_bits1(data);
  422.  
  423.   /* If flag is false, return NULL pointer (i.e. no extra bit info). */
  424.  
  425.   if (!data) return NULL;
  426.  
  427.   /* Initialize size of extra bit info buffer and allocate. */
  428.  
  429.   size = EXT_BUF_SIZE;
  430.   dataPtr = (char *) malloc(size);
  431.  
  432.   /* Reset marker to hold place in buffer. */
  433.  
  434.   marker = 0;
  435.  
  436.   /* While flag bit is true. */
  437.  
  438.   while (data) {
  439.  
  440.     /* Get next 8 bits of data. */
  441.     get_bits8(data);
  442.  
  443.     /* Place in extra bit info buffer. */
  444.  
  445.     dataPtr[marker] = (char) data;
  446.     marker++;
  447.  
  448.     /* If buffer is full, reallocate. */
  449.  
  450.     if (marker == size) {
  451.       size += EXT_BUF_SIZE;
  452.       dataPtr = (char *) realloc(dataPtr, size);
  453.     }
  454.  
  455.     /* Get next flag bit. */
  456.     get_bits1(data);
  457.   }
  458.  
  459.   /* Reallocate buffer to free extra space. */
  460.  
  461.   dataPtr = (char *) realloc(dataPtr, marker);
  462.  
  463.   /* Return pointer to extra bit info buffer. */
  464.  
  465.   return dataPtr;
  466. }
  467.  
  468.  
  469.  
  470.  
  471.  
  472.  
  473.  
  474.  
  475.